-
-
Notifications
You must be signed in to change notification settings - Fork 213
Make ExtendedPropertyReassignmentEventArgs & ExtendedPropertyInitialValueSetEventArgs public #887
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…alueSetEventArgs public
| string senderName = null, | ||
| MessageImportance importance = MessageImportance.Low) | ||
| : base(subcategory: null, code: null, file: file, lineNumber: line, columnNumber: column, 0, 0, message, helpKeyword, senderName, importance) | ||
| : base(propertyName, previousValue, newValue, location: message, message) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason why we can't just call this constructor directly? Why do we need our own type?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see your point and now I can't justify why these were added on the first place.
Removed.
ericstj
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Fixes
#885
Changes made
This code makes ExtendedPropertyReassignmentEventArgs & ExtendedPropertyInitialValueSetEventArgs public and they derive from the corresponding MSBuild types.